All Questions
Tagged with asyncparallel-programming
3 questions
7votes
1answer
795views
Immediately awaiting an asynchronous call [duplicate]
While working on an inherited project, I noticed the original dev(s) created many asynchronous functions that never seem to take advantage of being, well, asynchronous. For example: // The async ...
1vote
1answer
2kviews
Is the logic behind `Asyncio.wait()` and async/await, the same, just the code is written differently (syntax)?
I'm learning Python, more specially parallel programming using Python Parallel Programming Cookbook by Giancarlo Zaccone. At the time the book was published async/await was still in the beta version ...
6votes
1answer
252views
Asynchronously returning a hierarchal data using .NET TPL... what should my return object "look" like?
I want to use the .NET TPL to asynchronously do a DIR /S and search each subdirectory on a hard drive, and want to search for a word in each file... what should my API look like? In this scenario I ...